@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Zen Maru Gothic', sans-serif;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: #f7f7f3;
  color: #333333;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
}

.hero {
  --circle-shift-x: 0px;
  --circle-shift-y: 0px;
  --circle-rotate: 0deg;
  --circle-scale: 1;
}

/* 共通 */
.hero__red-circle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
  transform:
    translate3d(var(--circle-shift-x), var(--circle-shift-y), 0)
    rotate(var(--circle-rotate))
    scale(var(--circle-scale));
  opacity: 1;
}

/* =========================
   PC
========================= */
@media (min-width: 769px) {
  .hero__red-circle {
    top: -30%;
    right: 26%;
    width: 48%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-image: linear-gradient(to top, #e14fad 0%, #f9d423 100%);
    filter: saturate(1.05);
    transform-origin: calc(-42vw) 52%;
  }
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {
  .hero__red-circle {
    top: 2vw;
    right: 40vw;
    width: 100vw;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-image: linear-gradient(to top, #e14fad 0%, #f9d423 100%);
    filter: saturate(1.05);
    transform-origin: calc(-70vw) 52%;
  }
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 6vw 20rem;
  background: linear-gradient(180deg, #12cfe0 0%, #20c8ec 38%, #7fe0ea 62%, #f7f7f3 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at 40% 65%, rgba(255, 255, 255, 0.10), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(220, 244, 245, 0.20) 18%,
    rgba(233, 241, 238, 0.55) 48%,
    rgba(247, 247, 243, 0.88) 76%,
    #f7f7f3 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

.hero__shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__shape::after {
  content: none;
}

/* 共通 */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__shape,
.hero__red-circle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* =========================
   PC
========================= */
@media (min-width: 769px) {

  /* 右上の赤円 */
  .hero__red-circle {
    top: -30%;
    right: 26%;
    width: 48%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
background-image: linear-gradient(to top, #e14fad 0%, #f9d423 100%);
    filter: saturate(1.05);
  }

}

.scroll-indicator {
  position: absolute;
  top: 120px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.scroll-indicator__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

.scroll-indicator__arrow {
  position: relative;
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.4);
  overflow: visible;
}

.scroll-indicator__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
  transform-origin: top center;
  animation: scrollLine 1.8s ease-in-out infinite;
}

.scroll-indicator__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    height: 0;
    opacity: 0;
  }
  20% {
    height: 0;
    opacity: 1;
  }
  70% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 20%;
    opacity: 0.7;
  }
}

@keyframes scrollArrow {
  0% {
    transform: translateX(-50%) translateY(-12px) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
    opacity: 0;
  }
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {
  /* 右上の赤円 */
  .hero__red-circle {
    top: 2vw;
    right: 40vw;
    width: 100vw;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
background-image: linear-gradient(to top, #e14fad 0%, #f9d423 100%);
    filter: saturate(1.05);
  }


}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: #fff;
  text-align: left;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.hero__small {
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
  margin-left: 0.3rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.8rem);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero__place {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 300;
  opacity: 0.95;
}



.event-summary {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 36px 40px 56px;
  background: #f7f7f3;
  color: #333333;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.event-summary,
.event-summary * {
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.event-block + .event-block {
  margin-top: 64px;
}

/* 見出し */
.event-heading {
  display: flex;
  align-items: baseline;
  gap: 0.8em;
  margin: 0 0 28px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(61, 149, 255, 0.7);
  line-height: 1.2;
}

.event-heading-ja {
  font-size: 2rem;
  font-weight: 550;
  color: #333333;
}

.event-heading-en {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #4a4a4a;
}

/* 各日程 */
.event-card {
  padding: 8px 0 10px;
}

.event-card + .event-card {
  margin-top: 28px;
}

.event-label {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 10px;
}

/* 日時行 */
.event-date-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}

.event-date-main {
  flex: 1;
  min-width: 0;
}

.event-date {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;         /* 折り返し禁止 */
  white-space: nowrap;       /* 折り返し禁止 */
  line-height: 1;
}

/* 年 */
.event-year {
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.event-year-unit {
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 500;
  line-height: 1;
  margin-right: 0.12em;
}

/* 月日 */
.event-num {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.event-unit {
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  font-weight: 500;
  line-height: 1;
  margin-right: 0.05em;
}

/* 曜日 */
.event-weekday {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  margin-left: 0.16em;
  white-space: nowrap;
}

/* 時間 */
.event-time {
  flex: 0 0 200px;
  width: 200px;
  text-align: right;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #333333;
  white-space: nowrap;
  padding-top: 0.12em;
}

/* 会場 */
.event-place-card {
  padding-top: 8px;
}

.event-place {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
}

.event-place-sub {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82em;
  color: #333333;
}

.event-highlight-number {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 1;
  color: #dd5a0f;
}

/* 曜日色 */
.fri {
  color: #f2c94c;
}

.sat {
  color: #2f80ed;
}

.sun {
  color: #eb5757;
}

/* タブレット */
@media (max-width: 900px) {
  .event-summary {
    width: min(100%, 760px);
    padding: 32px 28px 48px;
  }

  .event-time {
    flex-basis: 168px;
    width: 168px;
    font-size: 1.25rem;
  }
}

.event-content-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
}

.event-content-lead {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
}

.event-highlight-number {
  display: inline-block;
  font-size: 1.9em;
  font-weight: 700;
  line-height: 0.9;
  color: #dd5a0f;
  vertical-align: -0.04em;
}

.event-content-sub {
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  font-weight: 500;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 640px) {
  .event-content-card {
    gap: 14px;
  }

  .event-content-lead {
    font-size: 1.55rem;
    line-height: 1.6;
  }

  .event-highlight-number {
    font-size: 1.85em;
  }

  .event-content-sub {
    font-size: 1rem;
    line-height: 1.85;
  }
}

/* スマホ */
@media (max-width: 640px) {
  .event-summary {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 28px 20px 42px;
  }

  .event-block + .event-block {
    margin-top: 52px;
  }

  .event-heading {
    gap: 0.65em;
    margin-bottom: 22px;
    padding-bottom: 9px;
  }

  .event-heading-ja {
    font-size: 1.8rem;
  }

  .event-heading-en {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .event-card + .event-card {
    margin-top: 24px;
  }

  .event-label {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .event-date-row {
    gap: 10px;
  }

  .event-date-main {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .event-date {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
  }

  .event-year {
    font-size: 1.05rem;
  }

  .event-year-unit {
    font-size: 0.72rem;
    margin-right: 0.08em;
  }

  .event-num {
    font-size: 2.65rem;
  }

  .event-unit {
    font-size: 0.92rem;
    margin-right: 0.03em;
  }

  .event-weekday {
    font-size: 0.95rem;
    margin-left: 0.08em;
  }

  .event-time {
    flex: 0 0 118px;
    width: 118px;
    font-size: 1.2rem;
    line-height: 1.2;
    padding-top: 0.08em;
  }

  .event-place {
    font-size: 1.15rem;
    line-height: 1.85;
  }

  .event-place-sub {
    margin-top: 6px;
    font-size: 0.88em;
  }
}




/* =========================
   Section
========================= */

.countdown {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  flex-wrap: wrap;
  padding: 28px 0;
}

.countdown::before,
.countdown::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(100%, 560px);
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-50%);
}

.countdown::before {
  top: 0;
}

.countdown::after {
  bottom: 0;
}

.countdown-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 3rem 0 4rem;
  border-radius: 0;
  overflow: hidden;
  background-image: url("../img/CountdownBack.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.countdown-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 0;
}

.countdown-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.countdown-hero__sub {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.countdown-hero__title {
  margin: 0 0 1.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  flex-wrap: wrap;
}

.countdown__item {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__number {
  display: block;
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

@media (max-width: 768px) {
  .countdown-hero__inner {
    min-height: 420px;
    padding: 40px 18px;
  }

  .countdown {
    gap: 18px;
  }

  .countdown__item {
    min-width: 90px;
  }

  .countdown__label {
    font-size: 0.72rem;
  }
}

.section-info {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5rem 1.25rem 7rem;
  text-align: center;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
  text-align: center;
}

._a {
  width: min(100%, 720px);
  margin: 0 auto;
}

.notice-frame {
  position: relative;
}

.notice-frame::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #380000;
  border-bottom: 1px solid #222;
  pointer-events: none;
}

.notice-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 170px;
  padding: 2em 1em;
  border: 1px solid #222;
  text-decoration: none;
  text-align: center;
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}

.notice-box__icon {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 120px;
  line-height: 1;
  color: #cceaef;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.notice-box__icon-ex {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 120px;
  line-height: 1;
  color: #cceaef;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.heading {
  position: relative;
  z-index: 1;
}

._a {
  width: min(100%, 720px);
  margin: 0 auto;
}

._a a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 170px;
  padding: 2em 1em;
  border: 1px solid #222;
  text-decoration: none;
  text-align: center;
  position: relative;
  background: #fff;
}

._a a::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #380000;
  border-bottom: 1px solid #222;
}

.heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.heading .first {
  display: inline-block;
  font-size: 1.5em;
  margin-right: 0.08em;
  color: #dd5a0f;
}

.title_text {
  color: #333333;
}

.englishfirst {
  color: #dd5a0f;
}

.english {
  color: #333333;
  display: inline-block;
  font-size: 0.6em;
}

.text {
  color: #333333;
  max-width: 760px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  line-height: 2;
  text-align: left;
}

/* =========================
   Info Cards
========================= */
.info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 120px;
  padding: 1.5rem 1.75rem;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-cards {
  position: relative;
  width: min(100%, 560px);
  margin: 2rem auto;
  padding: 1.2rem;
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 12px 15px rgba(47, 84, 150, 0.08);
}

.info-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 0.001px solid rgb(149, 149, 149);
  pointer-events: none;
}

.info-cards__grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  margin: 0;
}

.info-cards__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 115px;
  padding: 1.5rem 1.75rem;
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: min(100%, 350px);
  margin: 0 auto;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--card-noise);
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 80;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.info-card::after {
  content: "";
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  z-index: 1;
}

@media (min-width: 769px) {
  .info-card--highlight {
    grid-column: 1 / 3;
    width: 100%;
    max-width: 760px;
    min-height: 160px;
  }
}

.heading,
.info-card__title {
  white-space: nowrap;
}

.info-card__title,
.info-card__right {
  position: relative;
  z-index: 1;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
}

.info-card__title {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.info-card__icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #fff;
  opacity: 0.9;
  transform: translateX(-6px);
}

.info-card__fa-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.9;
  font-size: 33px;
  line-height: 1;
  transform: translateX(-6px);
}

.info-card__icon path,
.info-card__icon circle,
.info-card__icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card__arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  font-size: 3rem;
  font-weight: 100;
  opacity: 1;
  line-height: 1;
  transform: translateY(-3px);
}

.info-card--plan {
background-image: linear-gradient(to right, #93ef29 0%, #0fd850 100%);
}

.info-card--see {
background-image: linear-gradient(to right, #ff4070 0%, #ff683a 100%);  
}

.info-card--map {
background: linear-gradient(to right, #48c6ef 0%, #5998e1 100%);
}

.info-card--parking {
background: linear-gradient(220.55deg, #FFB800 0%, #f3eb18 100%);  
}

.info-card--faq {
  background-image: linear-gradient(220.55deg, #8A88FB 0%, #D079EE 100%);
}

/* リスト全体 */
.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notice-list li {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #DDD;
}

/* 日付 */
.notice-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  flex: 0 0 auto;
  font-size: 0.875rem;
  color: #666;
  margin-right: 0.5rem;
}

/* タグ */
.notice-tag {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  flex: 0 0 auto;
  font-size: 0.75rem;
  color: #666;
  border: 1px solid #666;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-right: 0.75rem;
}

/* テキスト */
.notice-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  flex: 1 1 auto;
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
  margin-top: 100rem;
  text-align: left;
}

.notice-list li:last-child {
  border-bottom: none;
}

.notice-link {
  text-decoration: underline;
  color: inherit;
}

.notice-link:hover {
  opacity: 0.8;
}

.notice-list li {
  padding: 0.5rem 0;
}

.notice-text {
  margin-top: 0.5rem;
}

@media (min-width: 769px) {
  .info-cards {
    width: min(100%, 980px);
    margin: 4rem auto 0;
  }

  .info-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 380px);
    justify-content: center;
    gap: 2rem 2rem;
    align-items: stretch;
  }

  .info-card {
    min-height: 160px;
    padding: 2rem 1.8rem;
  }

  .info-card__title {
    font-size: 1.2rem;
    line-height: 1.45;
    white-space: normal;
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {


  .hero__content {
    max-width: 100%;
    text-align: left;
  }

  .hero__title {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }
}

.text {
  color: #333333;
  width: 94%;
  max-width: 520px;
  margin: 2rem auto 4rem;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.text-info {
  color: #333333;
  width: 94%;
  max-width: 520px;
  margin: 2rem auto 4rem;
  font-size: 1rem;
  line-height: 2;
  text-align: left;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

.info-card__title {
  font-size: 1.05rem;
}

.info-card__icon {
  width: 46px;
  height: 46px;
}

@media (min-width: 769px) {
  .info-cards {
    width: min(100%, 1120px);
    margin: 4rem auto 0;
    padding: 1.8rem;
  }

  .info-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
  }

  .info-card {
    width: 100%;
    max-width: none;
    min-height: 160px;
    margin: 0;
    padding: 2rem 1.8rem;
  }

  .info-card--highlight {
    grid-column: 1 / -1;
    max-width: 590px;
    justify-self: center;
  }
}